00001 /////////////////////////////////////////////////////////////////////////////// 00002 /// @file deInternalValues.hpp 00003 /// 00004 /// @brief Internal Engine Values 00005 /// 00006 /// @author Hootie 00007 /// 00008 /// This file is the intellectual property of Novus Delta, LLC.. Usage of the 00009 /// contents of this file is subject to the Destiny3D Member License which 00010 /// can be found at http://www.destiny3d.com. Any other usage is prohibited. 00011 /// 00012 /// This file is distributed "AS IS" without warranty of any kind. Novus 00013 /// Delta, LLC. does not guarantee the fitness of the contents of this file 00014 /// for any particular purpose. 00015 /// 00016 /// Copyright (C) 2001-2003 Novus Delta, LLC. All Rights Reserved. 00017 /// 00018 /// <hr> 00019 /// Change History 00020 /// <hr> 00021 /// 00022 /// @date OCt 2001 00023 /// @author Hootie 00024 /// @remarks Creation 00025 /// 00026 /////////////////////////////////////////////////////////////////////////////// 00027 00028 #ifndef DEINTERNALVALUES_HPP 00029 #define DEINTERNALVALUES_HPP 00030 00031 00032 00033 //================================================================================= 00034 // Includes 00035 //================================================================================= 00036 00037 #include "deGlobalTypes.hpp" 00038 00039 00040 00041 //================================================================================= 00042 // Internal Registry Keys & Values 00043 //================================================================================= 00044 00045 const char RegDestinyKey[] = "Software\\Destiny3D\\"; 00046 const char RegEngineKey[] = "Software\\Destiny3D\\Engine"; 00047 00048 const char RegCurrentAppValue[] = "CurrentApp"; 00049 const char RegDestinyConfigPathValue[] = "DestinyCfgPath"; 00050 const char RegDestinyDefaultConfigFile[] = "config\\Destiny.cfg"; 00051 const char RegDestinyErrorMsgPathValue[] = "DestinyErrorMsgPath"; 00052 const char RegDestinyDefaultErrorMsgFile[] = "config\\DestinyErrorMsg.cfg"; 00053 const char RegUserErrorMsgPathValue[] = "UserErrorMsgPath"; 00054 const char RegUserDefaultErrorMsgFile[] = "config\\UserErrorMsg.cfg"; 00055 const char RegErrorDirectoryValue[] = "ErrorDirectory"; 00056 const char RegErrorDirectoryDefault[] = "Log"; 00057 const char RegLogDirectoryValue[] = "LogDirectory"; 00058 const char RegLogDirectoryDefault[] = "Log"; 00059 00060 const char RegMemConfigPathValue[] = "MemCfgPath"; 00061 00062 const char RegDefaultConfigFileName[] = "config\\deMemory.cfg"; 00063 00064 00065 00066 00067 00068 00069 #endif //End DEINTERNALVALUES_HPP 00070 00071
1.3-rc3